home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Mail
/
pine3.92
/
pine
/
osdep
/
jobcntrl
< prev
next >
Wrap
Text File
|
1993-07-15
|
482b
|
21 lines
/*----------------------------------------------------------------------
This routine returns 1 if job control is available. Note, thiis
could be some type of fake job control. It doesn't have to be
real BSD-style job control.
----*/
have_job_control()
{
return 1;
}
/*----------------------------------------------------------------------
If we don't have job control, this routine is never called.
----*/
stop_process()
{
kill(0, SIGSTOP);
}